home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------
-
- IInterfaceProvider.h
-
- Provides the function of returning interface pointers based on
- passed in IDs.
-
- ---------------------------------------------------------------*/
-
- #ifndef IInterfaceProvider_H
- #define IInterfaceProvider_H
-
- #include <MacTypes.h>
-
- class IInterfaceProvider
- {
- public:
-
- virtual OSErr GetInterfacePointer( unsigned long inID, void** outInterfacePtr ) = 0;
-
- };
-
- #endif